-
I am using H2O to perform a classification problem in a very imbalanced scenario. I decide to specify the instance …
- 375 views
- 0 answers
- 0 votes
-
I am trying to use a custom loss function for calculating a weighted MSE in a regression taks (values in …
- 373 views
- 2 answers
- 0 votes
-
So I implemented a neural network with this code: self.model = keras.Sequential() self.model.add(keras.Input(shape=(self.wejscia,), name="Input")) self.model.add(layers.Dense(64, activation="relu", name="dense_1")) self.model.add(layers.Dense(64, activation="relu", name="dense_2")) …
- 326 views
- 1 answers
- 0 votes